-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updated Docker Documentation on Readme #188
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for this PR @kehshiba, I appreciate your contribution here! I added a few minor change requests but this is very close!
@@ -48,6 +48,36 @@ gracefully (and without causing problems for others!).** | |||
The `[extras]` argument tells pip to install packages to fullfill the dependencies of the | |||
`ga4gh.vrs.extras` package. | |||
|
|||
## Getting started with Docker | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This section is good, but should be integrated in the context of why they would want to get started with Docker (answer: because the ga4gh.vrs.extra utils are dependent upon them). I think this README would therefore make sense with a little transition text, in an introductory subsection under "Installing dependencies for ga4gh.vrs.extras" section, below.
.idea/.gitignore
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove the .idea
directory and content from this PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove the .idea
directory that you've added. We should add it to the .gitignore
README.md
Outdated
@@ -48,6 +48,36 @@ gracefully (and without causing problems for others!).** | |||
The `[extras]` argument tells pip to install packages to fullfill the dependencies of the | |||
`ga4gh.vrs.extras` package. | |||
|
|||
## Getting started with Docker | |||
|
|||
Docker is an open-source platform that enables you to automate the deployment and management of applications using containers. Containers are lightweight, isolated environments that package all the necessary software and dependencies for an application to run consistently across different systems |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Docker is an open-source platform that enables you to automate the deployment and management of applications using containers. Containers are lightweight, isolated environments that package all the necessary software and dependencies for an application to run consistently across different systems | |
Docker is an open-source platform that enables you to automate the deployment and management of applications using containers. Containers are lightweight, isolated environments that package all the necessary software and dependencies for an application to run consistently across different systems. |
README.md
Outdated
If you're new to Docker, follow these steps to get started: | ||
|
||
### Step 1: Install Docker | ||
To begin, you need to install Docker on your machine. Follow the official Docker installation guide for your specific operating system: | ||
|
||
[Docker Installation Guide](https://docs.docker.com/get-docker/) | ||
|
||
### Step 2: Verify Docker Installation | ||
Once Docker is installed, you can verify the installation by running the following command in your terminal: | ||
|
||
|
||
``` docker version ``` | ||
|
||
This command displays the Docker client and server versions, indicating that Docker is successfully installed on your machine. | ||
|
||
### Step 3: Run a Docker Container | ||
To test Docker, let's run a simple container. In your terminal, execute the following command: | ||
|
||
``` docker run hello-world ``` | ||
|
||
This command pulls the hello-world Docker image (if not already present) and runs it in a container. You should see a message confirming that Docker is working correctly. | ||
|
||
[Docker Documentation](https://docs.docker.com/) | ||
|
||
|
||
|
||
## Installing dependencies for ga4gh.vrs.extras |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's probably simpler to just have:
If you're new to Docker, follow these steps to get started: | |
### Step 1: Install Docker | |
To begin, you need to install Docker on your machine. Follow the official Docker installation guide for your specific operating system: | |
[Docker Installation Guide](https://docs.docker.com/get-docker/) | |
### Step 2: Verify Docker Installation | |
Once Docker is installed, you can verify the installation by running the following command in your terminal: | |
``` docker version ``` | |
This command displays the Docker client and server versions, indicating that Docker is successfully installed on your machine. | |
### Step 3: Run a Docker Container | |
To test Docker, let's run a simple container. In your terminal, execute the following command: | |
``` docker run hello-world ``` | |
This command pulls the hello-world Docker image (if not already present) and runs it in a container. You should see a message confirming that Docker is working correctly. | |
[Docker Documentation](https://docs.docker.com/) | |
## Installing dependencies for ga4gh.vrs.extras | |
You will need to install Docker on your machine, follow the official [Docker Installation Guide](https://docs.docker.com/get-docker/) for your specific operating system. | |
For more information on Docker, see the [Getting Started Guide](https://docs.docker.com/get-started/). | |
## Installing dependencies for ga4gh.vrs.extras |
last commit fixes it, modified the doc too @ahwagner |
This pull request was marked stale due to inactivity. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please see my previous requested changes
Solves Issue #143